home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / PickTest / IcosahedronITSA.java.z / IcosahedronITSA.java
Encoding:
Java Source  |  2003-08-08  |  5.0 KB  |  174 lines

  1. /*
  2.  *    @(#)IcosahedronITSA.java 1.8 02/04/01 15:03:38
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import javax.media.j3d.*;
  41. import javax.vecmath.*;
  42.  
  43. class IcosahedronITSA extends IndexedTriangleStripArray {
  44.  
  45.   private static final int[] sVertCnt = {
  46.     3, 11, 5, 4, 5, 4
  47.   };
  48.  
  49.   IcosahedronITSA() {
  50.     super(12, GeometryArray.COORDINATES | GeometryArray.COLOR_3, 32, sVertCnt);  
  51.     
  52.     Point3f verts[] = new Point3f[12];
  53.     Color3f colors[] = new Color3f[12];
  54.     
  55.     verts[0] = new Point3f(0.0f,     1.4f,      0.8652f);
  56.     verts[1] = new Point3f(0.0f,     1.4f,     -0.8652f);
  57.     verts[2] = new Point3f(1.4f,     0.8652f,    0.0f);
  58.     verts[3] = new Point3f(1.4f,    -0.8652f,    0.0f);
  59.     verts[4] = new Point3f(0.0f,    -1.4f,     -0.8652f);
  60.     verts[5] = new Point3f(0.0f,    -1.4f,      0.8652f);
  61.     verts[6] = new Point3f(0.8652f,   0.0f,      1.4f);
  62.     verts[7] = new Point3f(-0.8652f,  0.0f,      1.4f);
  63.     verts[8] = new Point3f(0.8652f,   0.0f,     -1.4f);
  64.     verts[9] = new Point3f(-0.8652f,  0.0f,     -1.4f);
  65.     verts[10] = new Point3f(-1.4f,   0.8652f,    0.0f);
  66.     verts[11] = new Point3f(-1.4f,  -0.8652f,    0.0f);
  67.  
  68.     colors[0] = new Color3f(1.0f, 0.0f, 0.0f);
  69.     colors[1] = new Color3f(0.0f, 1.0f, 0.0f);
  70.     colors[2] = new Color3f(0.0f, 0.0f, 1.0f);
  71.     colors[3] = new Color3f(1.0f, 1.0f, 0.0f);
  72.     colors[4] = new Color3f(0.0f, 1.0f, 1.0f);
  73.     colors[5] = new Color3f(1.0f, 0.0f, 1.0f);
  74.     colors[6] = new Color3f(0.0f, 0.5f, 0.0f);
  75.     colors[7] = new Color3f(0.0f, 0.0f, 0.5f);
  76.     colors[8] = new Color3f(0.5f, 0.5f, 0.0f);
  77.     colors[9] = new Color3f(0.0f, 0.5f, 0.5f);
  78.     colors[10] = new Color3f(0.5f, 0.0f, 0.5f);
  79.     colors[11] = new Color3f(0.5f, 0.5f, 0.5f);
  80.  
  81.     int pntsIndex[] = new int[32];
  82.     int clrsIndex[] = new int[32];
  83.     
  84.     pntsIndex[0] = 4;
  85.     clrsIndex[0] = 4;
  86.     pntsIndex[1] = 5;
  87.     clrsIndex[1] = 5;
  88.     pntsIndex[2] = 11;
  89.     clrsIndex[2] = 11;
  90.     
  91.     pntsIndex[3] = 11;
  92.     clrsIndex[3] = 11;
  93.     pntsIndex[4] = 5;
  94.     clrsIndex[4] = 5; 
  95.     pntsIndex[5] = 7;
  96.     clrsIndex[5] = 7;
  97.  
  98.     pntsIndex[6] = 6;
  99.     clrsIndex[6] = 6;
  100.  
  101.     pntsIndex[7] = 0;
  102.     clrsIndex[7] = 0;
  103.  
  104.     pntsIndex[8] = 2;
  105.     clrsIndex[8] = 2;
  106.  
  107.     pntsIndex[9] = 1;
  108.     clrsIndex[9] = 1;
  109.  
  110.     pntsIndex[10] = 8;
  111.     clrsIndex[10] = 8;
  112.  
  113.     pntsIndex[11] = 9;
  114.     clrsIndex[11] = 9;
  115.  
  116.     pntsIndex[12] = 4;
  117.     clrsIndex[12] = 4;
  118.  
  119.     pntsIndex[13] = 11;
  120.     clrsIndex[13] = 11;
  121.     
  122.     pntsIndex[14] = 2;
  123.     clrsIndex[14] = 2;
  124.     pntsIndex[15] = 6;
  125.     clrsIndex[15] = 6; 
  126.     pntsIndex[16] = 3;
  127.     clrsIndex[16] = 3;
  128.  
  129.     pntsIndex[17] = 5;
  130.     clrsIndex[17] = 5;
  131.  
  132.     pntsIndex[18] = 4;
  133.     clrsIndex[18] = 4;
  134.  
  135.     pntsIndex[19] = 4;
  136.     clrsIndex[19] = 4;
  137.     pntsIndex[20] = 8;
  138.     clrsIndex[20] = 8; 
  139.     pntsIndex[21] = 3;
  140.     clrsIndex[21] = 3;
  141.  
  142.     pntsIndex[22] = 2;
  143.     clrsIndex[22] = 2;
  144.  
  145.     pntsIndex[23] = 0;
  146.     clrsIndex[23] = 0;
  147.     pntsIndex[24] = 1;
  148.     clrsIndex[24] = 1; 
  149.     pntsIndex[25] = 10;
  150.     clrsIndex[25] = 10;
  151.  
  152.     pntsIndex[26] = 9;
  153.     clrsIndex[26] = 9;
  154.  
  155.     pntsIndex[27] = 11;
  156.     clrsIndex[27] = 11;
  157.  
  158.     pntsIndex[28] = 0;
  159.     clrsIndex[28] = 0;
  160.     pntsIndex[29] = 10;
  161.     clrsIndex[29] = 10; 
  162.     pntsIndex[30] = 7;
  163.     clrsIndex[30] = 7;
  164.  
  165.     pntsIndex[31] = 11;
  166.     clrsIndex[31] = 11;
  167.     
  168.     setCoordinates(0, verts);
  169.     setCoordinateIndices(0, pntsIndex);
  170.     setColors(0, colors);
  171.     setColorIndices(0, clrsIndex);
  172.   }
  173. }
  174.